const runtime.arenaL1Bits

8 uses

	runtime (current package)
		malloc.go#L275: 	arenaL1Bits = 6 * (_64bit * goos.IsWindows)
		malloc.go#L284: 	arenaL2Bits = heapAddrBits - logHeapArenaBytes - arenaL1Bits
		malloc.go#L293: 	arenaBits = arenaL1Bits + arenaL2Bits
		mheap.go#L145: 	arenas [1 << arenaL1Bits]*[1 << arenaL2Bits]*heapArena
		mheap.go#L620: 	if arenaL1Bits == 0 {
		mheap.go#L636: 	if arenaL1Bits == 0 {
		mheap.go#L689: 	if arenaL1Bits == 0 {
		mheap.go#L701: 	if arenaL1Bits != 0 && l2 == nil { // Should never happen if there's no L1.